home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Graphics Programming (2nd Edition) / Visual Basic Graphics Programming 2nd Edition.iso / Src / Ch1 / TestScr.frm < prev    next >
Text File  |  1999-04-16  |  1KB  |  41 lines

  1. VERSION 5.00
  2. Object = "*\AScrWin.vbp"
  3. Begin VB.Form frmTestScr 
  4.    Caption         =   "ScrollingWindow"
  5.    ClientHeight    =   4020
  6.    ClientLeft      =   4110
  7.    ClientTop       =   2295
  8.    ClientWidth     =   3315
  9.    LinkTopic       =   "Form1"
  10.    PaletteMode     =   1  'UseZOrder
  11.    ScaleHeight     =   4020
  12.    ScaleWidth      =   3315
  13.    Begin Project1.ScrolledWindow swinLake 
  14.       Height          =   3975
  15.       Left            =   0
  16.       TabIndex        =   0
  17.       Top             =   0
  18.       Width           =   3255
  19.       _extentx        =   5741
  20.       _extenty        =   7011
  21.       Begin VB.Image imgLake 
  22.          Height          =   5295
  23.          Left            =   0
  24.          Picture         =   "TestScr.frx":0000
  25.          Top             =   0
  26.          Width           =   3720
  27.       End
  28.    End
  29. End
  30. Attribute VB_Name = "frmTestScr"
  31. Attribute VB_GlobalNameSpace = False
  32. Attribute VB_Creatable = False
  33. Attribute VB_PredeclaredId = True
  34. Attribute VB_Exposed = False
  35. Option Explicit
  36.  
  37. Private Sub Form_Resize()
  38.     swinLake.Move 0, 0, ScaleWidth, ScaleHeight
  39. End Sub
  40.  
  41.